home *** CD-ROM | disk | FTP | other *** search
- /*
- * (c) Copyright 1992 by Panagiotis Tsirigotis
- * All rights reserved. The file named COPYRIGHT specifies the terms
- * and conditions for redistribution.
- */
-
- #ifndef BUILTIN_H
- #define BUILTIN_H
-
- /*
- * $Id: builtin.h,v 5.1 1992/10/31 23:56:10 panos Exp $
- */
-
- #include "defs.h"
-
- #define FORK YES
- #define NO_FORK NO
-
- struct builtin_service
- {
- char *name ;
- int socket_type ;
- voidfunc function ;
- boolean_e fork_server ;
- } ;
-
- struct builtin_service *find_builtin() ;
- struct builtin_service *find_special_builtin() ;
- struct builtin_service *builtin_lookup() ;
-
- #endif /* BUILTIN_H */
-
-